home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / Java Support / Java_Source / IFC_112 / netscape / application / Autoscroller.java < prev    next >
Encoding:
Text File  |  1999-05-28  |  535 b   |  23 lines  |  [TEXT/CWIE]

  1. // Autoscroller.java
  2. // By Ned Etcode
  3. // Copyright 1995, 1996, 1997 Netscape Communications Corp.  All rights reserved.
  4.  
  5. package netscape.application;
  6.  
  7.  
  8. class Autoscroller implements Target {
  9.     private MouseEvent _event;
  10.  
  11.     public void performCommand(String command, Object data) {
  12.         View    mouseView;
  13.  
  14.         mouseView = (View)data;
  15.         mouseView.mouseDragged(
  16.             mouseView.rootView().convertEventToView(mouseView, _event));
  17.     }
  18.  
  19.     public void setEvent(MouseEvent event) {
  20.         _event = event;
  21.     }
  22. }
  23.